*, *::before, *::after {
  box-sizing: border-box; 
  padding: 0;
}

body{ background-color: black}

.btnJogar{
    background-color: white;
    border-radius: 10px;
    color: green;
    width:25%;
    height: 35px;
    border: none;
    margin: 20px 0px;
    font-size:20px;
    font-family:fantasy;
    filter:none;
}

.divCobra {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    top: 20%;
    background-color: rgba(0, 0, 0, 0.0); 
    width: 100%;
    filter:none;
}
.imgCobra{
    width: 300px;
    filter:none;
}
.telaInvisivel{
    display: none;
}

.blur-fundo{
    filter: blur(5px);
    pointer-events: none; 
}

#canvas {
    width: 100%;
    height: 100vh;  
}